home *** CD-ROM | disk | FTP | other *** search
/ Programmer Plus 2007 / Programmer-Plus-2007.iso / Programming / ActiveX Controlls / NCTAudioEditor2 ActiveX DLL / NCTAudioEditor2.exe / {app} / Samples / TestBCBAudioEditor2 / About.h < prev    next >
Encoding:
C/C++ Source or Header  |  2002-10-10  |  908 b   |  28 lines

  1. //----------------------------------------------------------------------------
  2. #ifndef AboutH
  3. #define AboutH
  4. //----------------------------------------------------------------------------
  5. #include <vcl\ExtCtrls.hpp>
  6. #include <vcl\Buttons.hpp>
  7. #include <vcl\StdCtrls.hpp>
  8. #include <vcl\Controls.hpp>
  9. #include <vcl\Forms.hpp>
  10. #include <vcl\Graphics.hpp>
  11. #include <vcl\Classes.hpp>
  12. #include <vcl\SysUtils.hpp>
  13. #include <vcl\Windows.hpp>
  14. #include <vcl\System.hpp>
  15. //----------------------------------------------------------------------------
  16. class TfrmAbout : public TForm
  17. {
  18. __published:
  19.     TImage *Image1;
  20. private:
  21. public:
  22.     virtual __fastcall TfrmAbout(TComponent* AOwner);
  23. };
  24. //----------------------------------------------------------------------------
  25. extern PACKAGE TfrmAbout *frmAbout;
  26. //----------------------------------------------------------------------------
  27. #endif    
  28.